博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
开始Flask项目
阅读量:5332 次
发布时间:2019-06-14

本文共 1454 字,大约阅读时间需要 4 分钟。

  1. 新建Flask项目。
  2. 设置调试模式。
  3. 理解Flask项目主程序。
  4. 使用装饰器,设置路径与函数之间的关系。
  5. 使用Flask中render_template,用不同的路径,返回首页、登录员、注册页。
  6. 用视图函数反转得到URL,{
    {url_for(‘login’)}},完成导航条里的链接。
    
Hogwarts
    
登录

欢迎登陆

用户名:
密码:
    
注册

欢迎注册

输入用户名:
输入密码:
确认密码:
from flask import Flask,render_templateapp = Flask(__name__)@app.route('/')def first():    return render_template('first.html')@app.route('/sign_up/',methods=['GET','POST'])def sign_up():    return render_template('sign_up.html')@app.route('/sign_in/')def sign_in():    return render_template('sign_in.html')if __name__ == '__main__':    app.run()

 

转载于:https://www.cnblogs.com/lyx1997/p/7781248.html

你可能感兴趣的文章
Linux远程登录
查看>>
Linux自己安装redis扩展
查看>>
HDU 1016 Prime Ring Problem(dfs)
查看>>
苹果官方例子
查看>>
C#中结构体与字节流互相转换
查看>>
WIN10配置MongoDB
查看>>
iOS resign code with App Store profile and post to AppStore
查看>>
python 表格操作
查看>>
LeetCode 84. Largest Rectangle in Histogram
查看>>
LeetCode Two Sum III - Data structure design
查看>>
session和xsrf
查看>>
Cookie与Session
查看>>
配置redis外网可访问
查看>>
跟随大神实现简单的Vue框架
查看>>
Linux目录结构
查看>>
learning awk
查看>>
LeetCode-Strobogrammatic Number
查看>>
luoguP3414 SAC#1 - 组合数
查看>>
五一 DAY 4
查看>>
关于System.__ComObject一些问题
查看>>